home *** CD-ROM | disk | FTP | other *** search
/ Computer Buyer 1997 August / Oasis demo.iso / Office / Claris13 / CLARIS.CST / 00119_Script_119 < prev    next >
Text File  |  1997-03-20  |  371b  |  20 lines

  1. on togglepres
  2.   global soundon
  3.   
  4.   if soundon = 0 then
  5.     set soundon = 1
  6.     set the visibility of sprite 15 to 0
  7.     set the visibility of sprite 16 to 1
  8.     put "sales"
  9.     
  10.     abort
  11.   else
  12.     
  13.     set soundon = 0
  14.     put "user mode"
  15.     set the visibility of sprite 16 to 0
  16.     set the visibility of sprite 15 to 1
  17.     
  18.   end if
  19. end togglepres
  20.